home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue62 / WStrings / widereg.pas < prev    next >
Pascal/Delphi Source File  |  2000-08-10  |  368b  |  20 lines

  1. unit WideReg;
  2.  
  3. interface
  4.  
  5. // Register the TWideLabel component and WideString property editor.
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. uses Classes, DsgnIntf, WideLabel, WideProp;
  12.  
  13. procedure Register;
  14. begin
  15.   RegisterPropertyEditor(TypeInfo(WideString), TPersistent, '', TWideStringProperty);
  16.   RegisterComponents('Tempest', [TWideLabel]);
  17. end;
  18.  
  19. end.
  20.